home *** CD-ROM | disk | FTP | other *** search
Wrap
VERSION 2.00 Begin Form CalAbout BackColor = &H00C0C0C0& BorderStyle = 3 'Fixed Double Caption = "About Calendar" ClientHeight = 2910 ClientLeft = 2520 ClientTop = 2505 ClientWidth = 4005 ControlBox = 0 'False Height = 3345 Icon = CALABOUT.FRX:0000 Left = 2445 LinkTopic = "Form1" MaxButton = 0 'False MinButton = 0 'False ScaleHeight = 2910 ScaleWidth = 4005 Top = 2145 Width = 4155 Begin CommandButton Command1 Caption = "OK" Default = -1 'True Height = 375 HelpContextID = 3011 Left = 1380 TabIndex = 3 Top = 2400 Width = 1095 End Begin Label Label1 Alignment = 2 'Center BackColor = &H00C0C0C0& Caption = "This pop-up calendar is based on a program that Don Schueler (76337,3115) made available in the MSBASIC forum on CompuServe for anyone to copy or modify. We made some slight changes to his code, but pretty much left things the way they were. Thanks!" FontBold = 0 'False FontItalic = 0 'False FontName = "MS Sans Serif" FontSize = 8.25 FontStrikethru = 0 'False FontUnderline = 0 'False ForeColor = &H00000000& Height = 1290 Index = 2 Left = 135 TabIndex = 2 Top = 915 Width = 3690 End Begin Label Label1 Alignment = 2 'Center BackColor = &H00C0C0C0& Caption = "Don Schueler" ForeColor = &H00000000& Height = 315 Index = 1 Left = -15 TabIndex = 1 Top = 510 Width = 3990 End Begin Label Label1 Alignment = 2 'Center BackColor = &H00C0C0C0& Caption = "VB Popup Calendar Example" ForeColor = &H00000000& Height = 315 Index = 0 Left = 30 TabIndex = 0 Top = 150 Width = 3960 End Option Explicit Sub Command1_Click () Unload Me End Sub Sub Form_Load () Left = (Screen.Width - Width) / 2 Top = (Screen.Height - Height) / 2 Screen.MousePointer = 0 End Sub